:root{
    --excel:#217346;
    --excel-dark:#165A34;
    --excel-light:#2ca564;
    --dark:#222;
    --gray:#f4f5f7;
    --border:#d8d8d8;
    --vert-fonce:  #003223;
    --vert-foret:  #007F3B;
    --vert-clair:  #7AC741;
    --jaune:       #FEC700;
    --blanc-lin:   #F9FAF5;
    --border:      #D8E8D0;
    --text:        #1A1A1A;
    --muted:       #5A6B62;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#ececec;
    padding:10px;
}

.poster{
    width:100%;
    margin:auto;
    background:transparent;
    overflow:hidden;
    box-shadow:0 0 40px rgba(0,0,0,.15);
    border-radius:15px;
}

/* HEADER */

.hero{
    display:grid;
    grid-template-columns:55% 45%;
    padding:30px;
    background:
    linear-gradient(135deg,#ffffff 0%,#f7f8f8 100%);
}

.logo-zone{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.logo{
    width:110px;
}

.org-name{
    color:var(--excel-dark);
}

.org-name h3{
    font-size:18px;
    font-weight:500;
}

.org-name h1{
    font-size:42px;
    line-height:1.1;
    font-weight:800;
}

.badge{
    display:inline-block;
    background:var(--excel);
    color:white;
    padding:10px 25px;
    border-radius:10px;
    font-weight:700;
    margin-bottom:20px;
}

.main-title{
    font-size:78px;
    line-height:.95;
    font-weight:900;
    color:#111;
}

.main-title span{
    color:var(--excel);
}

.subtitle{
    margin-top:20px;
    font-size:20px;
    line-height:1.5;
    color:#333;
}

.subtitle strong{
    color:var(--excel);
}

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-right img{
    width:100%;
}

/* ICONS */

.icons-row{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
    padding:0 35px 25px;
}

.icon-card{
    text-align:center;
    background:white;
    border-radius:15px;
    padding:18px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.icon-card div:first-child{
    font-size:38px;
}

.icon-card p{
    margin-top:10px;
    font-size:13px;
    font-weight:700;
}

/* CONTENT */

.content{
    display:grid;
    grid-template-columns:55% 45%;
    gap:10px;
    padding:0 35px;
}

.card{
    border:2px solid var(--vert-fonce);
    border-radius:15px;
    overflow:hidden;
}

.card-header{
    background:var(--excel);
    color:white;
    font-size:20px;
    font-weight:800;
    padding:10px 10px;
}

.modules{
    padding:10px;
}

.module{
    display:flex;
    gap:5px;
    margin-bottom:10px;
    align-items:center;
}

.module-tag{
    min-width:110px;
    text-align:center;
    background:var(--excel);
    color:white;
    padding:8px;
    border-radius:8px;
    font-size:13px;
    font-weight:700;
}

.module-title{
    font-size:15px;
}

.info{
    padding:10px;
}

.info-item{
    margin-bottom:15px;
}

.info-item h4{
    color:var(--excel-dark);
    margin-bottom:5px;
}

.price{
    font-size:20px;
    color:var(--excel);
    font-weight:900;
}

/* COMPETENCES */

.bottom-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    padding: 20px 30px;
}

.list-card{
    border:2px solid var(--vert-fonce);
    border-radius:15px;
    overflow:hidden;
}

.list-content{
    padding:20px;
}

.list-content ul{
    list-style:none;
}

.list-content li{
    margin-bottom:12px;
    padding-left:25px;
    position:relative;
}

.list-content li::before{
    content:"✓";
    color:var(--excel);
    font-weight:900;
    position:absolute;
    left:0;
}

.why-icons{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    text-align:center;
}

.why-icons div{
    padding:20px 10px;
}

.why-icons span{
    display:block;
    font-size:36px;
    margin-bottom:10px;
}

/* CTA */

.cta{
    margin-top:20px;
    background:
    linear-gradient(135deg,#0f5d34,#217346);
    color:white;
    padding:35px;
}

.cta-grid{
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
}

.cta-title{
    font-size:45px;
    line-height:.95;
    font-weight:900;
}

.cta-title span{
    color:#FFD02C;
}

.contacts{
    font-size:20px;
    line-height:2;
}

.footer{
    background:#0f2f1d;
    color:white;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    text-align:center;
    padding:20px;
}

.footer div{
    font-weight:600;
}

@media print{
    body{
        background:white;
        padding:0;
    }

    .poster{
        width:100%;
        box-shadow:none;
    }
}